f37f1d9789f290a6386fc1cbf8b190122787d9eb,fm-workbench/agree/com.rockwellcollins.atc.agree.codegen/src/com/rockwellcollins/atc/agree/codegen/handlers/MATLABFunctionHandler.java,MATLABFunctionHandler,getMatlabExportInfo,#ComponentType#,218

Before Change


		Property prop = EMFIndexRetrieval.getPropertyDefinitionInWorkspace(ct, "Source_Text");
		try {
			ListValue lv = (ListValue) PropertyUtils.getSimplePropertyListValue(ct, prop);
			return new ModelInfo(getStringElement(lv, 0), getStringElement(lv, 1), getStringElement(lv, 2));
		} catch (PropertyNotPresentException e) {
			return new ModelInfo();
		}

After Change


		Property prop = EMFIndexRetrieval.getPropertyDefinitionInWorkspace(ct, "Source_Text");
		try {
			ListValue lv = (ListValue) PropertyUtils.getSimplePropertyListValue(ct, prop);
			String str1 = readPathFromAADLProperty(getStringElement(lv, 0));
			String str2 = readPathFromAADLProperty(getStringElement(lv, 1));
			String str3 = readPathFromAADLProperty(getStringElement(lv, 2));
			String str4 = readPathFromAADLProperty(getStringElement(lv, 3));